home *** CD-ROM | disk | FTP | other *** search
/ Thinkin' Science - 1st & 2nd Grades / Thinkin' Science - First and Second Grades (Edmark)(Version 1.0)(1997).ISO / pc / dearpar / dpdata / dp.dir / 00070_Script_End of Menu Section Frame Script < prev    next >
Text File  |  1997-09-03  |  879b  |  35 lines

  1. on exitFrame
  2.   go to the frame
  3. end
  4.  
  5. on enterFrame
  6.   
  7.   
  8.   --  the following pops up the label for each Icon button after two seconds
  9.   --  the label resides in a sprite that is 20 sprites away from its associated icon button
  10.   
  11.   --  case rollOver() of
  12.   --    5,6,7,8,9,10,11,12,13,14,25,26,27,28,29,30,31,32,33,34:  
  13.   --      
  14.   --      set labelSprite = the rollOver + 20
  15.   --      
  16.   --            the following checks to see if the cursor is actually over 
  17.   --            the Label and adjusts the labelSprite variable accordingly
  18.   --      
  19.   --      if labelSprite > 45 then 
  20.   --        set LabelSprite = labelSprite - 20
  21.   --      end if
  22.   --      
  23.   --      set the visible of sprite labelSprite to TRUE
  24.   --      
  25.   --      updateStage
  26.   --      
  27.   --    otherwise
  28.   --      
  29.   --      clearLabels
  30.   --      
  31.   --  end case
  32.   
  33. end
  34.  
  35.